home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 1998 #6 / 1998 CD 6 (Gul).iso / 02.dir / 00690.ls < prev    next >
Encoding:
Text File  |  1996-02-08  |  584 b   |  20 lines

  1. on mouseDown
  2.   global gMovieRate
  3.   puppetSprite(the clickOn, 1)
  4.   puppetSound("TramAcel.aif")
  5.   repeat while the stillDown = 1
  6.     set the locV of sprite the clickOn to the mouseV
  7.     set lBottom to the bottom of sprite 32
  8.     set lPosition to lBottom - the locV of sprite the clickOn
  9.     set lHeight to the height of sprite 32
  10.     set lIncrement to lHeight / 10
  11.     set lRate to lPosition / lIncrement
  12.     set gMovieRate to lRate
  13.     set the movieRate of sprite 1 to gMovieRate
  14.     updateStage()
  15.   end repeat
  16.   set the movieRate of sprite 1 to 0
  17.   updateStage()
  18.   puppetSound(0)
  19. end
  20.